home *** CD-ROM | disk | FTP | other *** search
/ Top 200 Programs / Top 200 Programs.iso / Bob8 / THOMPSON / LIBERTY / PRODUCT / LB14W.EXE / STARTUP.BAS < prev    next >
BASIC Source File  |  1996-02-02  |  1KB  |  33 lines

  1.  
  2.     'STARTUP.BAS
  3.     nomainwin
  4.     notice "This is the default startup handler! Take a look at " + _
  5.         "STARTUP.BAS for instructions on using the runtime engine."
  6.     end
  7.  
  8.     'ABOUT STARTUP.BAS
  9.     '==================================================================
  10.     'The Liberty BASIC runtime engine will look for a file called
  11.     'STARTUP.TKN if no other *.TKN file is specified in the command
  12.     'line.  The STARTUP.TKN file included in the Liberty BASIC
  13.     'package is created from this STARTUP.BAS file.  If desired,
  14.     'you could create a simple STARTUP.BAS file that would start up
  15.     'your application for you.  It might look like this:
  16.  
  17.     nomainwin
  18.     run "myprog.tkn"
  19.     end
  20.  
  21.  
  22.     'RUNTIME PASSWORD PROTECTION
  23.     '==================================================================
  24.     'To use the runtime engine, you must place a PASSWORD statement
  25.     'before the first SCAN or INPUT statement in your program.  Your
  26.     'password is based on your name.  Both are provided to you on a
  27.     'printed sheet included with the Liberty BASIC package.  The name
  28.     'and password must be spelled exactly as presented on the included
  29.     'sheet.
  30.  
  31.     'Here is an example
  32.     password "Your Name", "?password?"
  33.